home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Burning & Media / GB-PVR 1.2.13 / GBPVR10213.msi / Cabs.w1.cab / upgrade.ddl < prev    next >
Encoding:
Text File  |  2008-05-12  |  1.5 KB  |  19 lines

  1. alter table CHANNEL add column display_name VARCHAR(50)
  2. create index idxstarttime on PROGRAMME (start_time)
  3. create index idxendtime on PROGRAMME (end_time)
  4. alter table SOURCE_CHANNEL_MAPPING add column dvbsub_pid INTEGER
  5. alter table SOURCE_CHANNEL_MAPPING add column dvbsub_composition_page_id INTEGER
  6. alter table SOURCE_CHANNEL_MAPPING add column dvbsub_ancillary_page_id INTEGER
  7. alter table SOURCE_CHANNEL_MAPPING add column dvbsub_all_services VARCHAR(255)
  8. create table REMINDER (programme_oid int)
  9. alter table RECORDING_SCHEDULE add column priority int
  10. alter table RECORDING_SCHEDULE add column conversion_profile VARCHAR(50)
  11. update RECORDING_SCHEDULE set priority = oid where recording_type > 0 and priority is null
  12. alter table CAPTURE_SOURCE add column allocation_order int
  13. update CAPTURE_SOURCE set allocation_order=oid where allocation_order is null
  14. create table PREVIOUS_EPISODE (recording_group int, unique_identifier VARCHAR(50), create_date DATETIME)
  15. create table YOUTUBE_VIDEO (filename VARCHAR(255), youtube_identifier VARCHAR(50), title VARCHAR(255), description VARCHAR(255), author VARCHAR(50), thumbnail_url VARCHAR(255),  create_date DATETIME, keep char(1))
  16. update  "DIRECT_RECORDING_SOURCE" set card_type='AVerMedia M780 (Analog)' where card_type='AVerMedia M780'
  17. alter table PLAYBACK_POSITION add column duration int
  18. alter table PLAYBACK_POSITION add column last_watched DATETIME
  19. update PLAYBACK_POSITION set last_watched = DATETIME('NOW') where last_watched is null